<filecreate> : Create File

Creates a new empty file.

Syntax: 

<filecreate>("File", Reserved)

File
Full path to the file to create (e.g., "c:\mydocuments\empty.doc").   Can be a static text or variable containing text.

Reserved
Must be 0.

Example: 

<#> This example creates new empty file c:\newfile.txt
<#>
<cmds>
<filecreate>("c:\newfile.txt",0)